home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / delphi / kolekce / d6 / rxlibsetup.exe / {app} / units / Qbnddlg.dfm / Qbnddlg.txt
Encoding:
Text File  |  1999-10-12  |  2.4 KB  |  122 lines

  1. object QueryParamsDialog: TQueryParamsDialog
  2.   Left = 210
  3.   Top = 119
  4.   ActiveControl = ParamList
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Query parameters'
  8.   ClientHeight = 183
  9.   ClientWidth = 354
  10.   Color = clBtnFace
  11.   Font.Charset = DEFAULT_CHARSET
  12.   Font.Color = clWindowText
  13.   Font.Height = -11
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   OldCreateOrder = True
  17.   Position = poScreenCenter
  18.   OnCreate = FormCreate
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object GroupBox1: TGroupBox
  22.     Left = 9
  23.     Top = 3
  24.     Width = 336
  25.     Height = 143
  26.     Caption = 'Define Parameters'
  27.     TabOrder = 0
  28.     object Label1: TLabel
  29.       Left = 8
  30.       Top = 20
  31.       Width = 80
  32.       Height = 13
  33.       Caption = '&Parameter name:'
  34.       FocusControl = ParamList
  35.     end
  36.     object Label2: TLabel
  37.       Left = 143
  38.       Top = 66
  39.       Width = 30
  40.       Height = 13
  41.       Caption = '&Value:'
  42.       FocusControl = ParamValue
  43.     end
  44.     object Label3: TLabel
  45.       Left = 143
  46.       Top = 40
  47.       Width = 49
  48.       Height = 13
  49.       Caption = '&Data type:'
  50.       FocusControl = TypeList
  51.     end
  52.     object ParamValue: TEdit
  53.       Left = 208
  54.       Top = 62
  55.       Width = 121
  56.       Height = 21
  57.       TabOrder = 2
  58.       OnExit = ParamValueExit
  59.     end
  60.     object NullValue: TCheckBox
  61.       Left = 143
  62.       Top = 112
  63.       Width = 82
  64.       Height = 17
  65.       Caption = '&Null Value'
  66.       TabOrder = 3
  67.       OnClick = NullValueClick
  68.     end
  69.     object TypeList: TComboBox
  70.       Left = 208
  71.       Top = 36
  72.       Width = 121
  73.       Height = 21
  74.       Style = csDropDownList
  75.       ItemHeight = 13
  76.       Sorted = True
  77.       TabOrder = 1
  78.       OnChange = TypeListChange
  79.     end
  80.     object ParamList: TListBox
  81.       Left = 8
  82.       Top = 36
  83.       Width = 121
  84.       Height = 93
  85.       ItemHeight = 13
  86.       Sorted = True
  87.       TabOrder = 0
  88.       OnClick = ParamListChange
  89.     end
  90.   end
  91.   object OkBtn: TButton
  92.     Left = 54
  93.     Top = 153
  94.     Width = 75
  95.     Height = 25
  96.     Caption = 'OK'
  97.     Default = True
  98.     ModalResult = 1
  99.     TabOrder = 1
  100.     OnClick = OkBtnClick
  101.   end
  102.   object CancelBtn: TButton
  103.     Left = 139
  104.     Top = 153
  105.     Width = 75
  106.     Height = 25
  107.     Cancel = True
  108.     Caption = 'Cancel'
  109.     ModalResult = 2
  110.     TabOrder = 2
  111.   end
  112.   object HelpBtn: TButton
  113.     Left = 224
  114.     Top = 153
  115.     Width = 75
  116.     Height = 25
  117.     Caption = '&Help'
  118.     TabOrder = 3
  119.     OnClick = HelpBtnClick
  120.   end
  121. end
  122.